home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1999 / MacHack 1999.toast / The Hacks / DesktopDoubler / NubApp / Notice.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-06-22  |  683 b   |  19 lines  |  [TEXT/CWIE]

  1. #ifndef _NOTICE_
  2. #define _NOTICE_
  3.  
  4. #include <Dialogs.h>
  5. #include <Processes.h>
  6.  
  7.  
  8. void PreflightNotice(Boolean blockEvents);
  9. void PostNotice(AlertType type,const StringPtr error,const StringPtr detail);
  10. Boolean PostQuestion(AlertType type,const StringPtr error,const StringPtr detail);
  11. OSErr CompatibleStandardAlert(AlertType inAlertType,StringPtr inError,StringPtr inExplanation,
  12.                             AlertStdAlertParamPtr inAlertParam,SInt16 *outItemHit);
  13. pascal void CompatibleStandardAlertUserItem(WindowPtr window,short item);
  14. short DrawAutoSizedText(StringPtr text,short font,short size,short left,short top,short width,Boolean draw);
  15. Boolean WeAreFrontProcess(void);
  16.  
  17.  
  18. #endif /* _NOTICE_ */
  19.